home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 2000 August: Tool Chest / Dev.CD Aug 00 TC Disk 2.toast / pc / sample code / interapplication comm / menuscripter / sources / msaecut.h < prev    next >
Encoding:
Text File  |  2000-06-23  |  510 b   |  26 lines

  1. // MSAECut.h
  2. //
  3. // Original version by Jon Lansdell and Nigel Humphreys.
  4. // 4.0 and 3.1 updates by Greg Sutton.
  5. // ©Apple Computer Inc 1996, all rights reserved.
  6.  
  7. #ifndef __MSAECUT__
  8. #define __MSAECUT__
  9.  
  10. #include <AppleEvents.h>
  11. #include <AEObjects.h>
  12. #include <AERegistry.h>
  13.  
  14. #include "MSToken.h"
  15.  
  16. pascal OSErr    DoCut(const AppleEvent *theAppleEvent, AppleEvent *reply, long refcon);
  17.  
  18. OSErr            CutTextToken(TextToken* theToken);
  19. OSErr            CutTextDesc(AEDesc* textDesc);
  20. OSErr            CutDesc(AEDesc* aDesc);
  21.  
  22. #endif
  23.  
  24.  
  25.  
  26.